home *** CD-ROM | disk | FTP | other *** search
/ Sun Solutions 1997 April to September / Sun Solutions CD - APR '97 - SEP '97 (704-3778-12 Rev. H)(Sun Microsystems, Inc.)(1997).iso / products / bin / httpd / conf / httpd.conf-dist < prev    next >
Text File  |  1996-03-19  |  3KB  |  92 lines

  1. #This is the main server configuration file. It is best to 
  2. # leave the directives in this file in the order they are in, or
  3. # things may not go the way you'd like. See URL http://hoohoo.ncsa.uiuc.edu/
  4. # for instructions.
  5.  
  6. # Do NOT simply read the instructions in here without understanding
  7. # what they do, if you are unsure consult the online docs. You have been
  8. # warned.  
  9.  
  10. # NCSA httpd (comments, questions to httpd@ncsa.uiuc.edu)
  11.  
  12. # ServerType is either inetd, or standalone.
  13.  
  14. ServerType standalone
  15.  
  16. # If you are running from inetd, go to "ServerAdmin".
  17.  
  18. # Port: The port the standalone listens to. For ports < 1023, you will
  19. # need httpd to be run as root initially.
  20.  
  21. Port 7999 
  22.  
  23. # StartServers: The number of servers to launch at startup.  Must be
  24. # compiled without the NO_PASS compile option
  25.  
  26. StartServers 1
  27.  
  28. # MaxServers: The number of servers to launch until mimic'ing the 1.3
  29. # scheme (new server for each connection).  These servers will stay around
  30. # until the server is restarted.  They will be reused as needed, however.
  31. # See the documentation on hoohoo.ncsa.uiuc.edu for more information.
  32.  
  33. MaxServers 1
  34.  
  35. # If you wish httpd to run as a different user or group, you must run
  36. # httpd as root initially and it will switch.  
  37.  
  38. # User/Group: The name (or #number) of the user/group to run httpd as.
  39.  
  40. #User markh 
  41. #Group #-1
  42.  
  43. # ServerAdmin: Your address, where problems with the server should be
  44. # e-mailed.
  45.  
  46. ServerAdmin cdware@sun.com 
  47.  
  48. # ServerRoot: The directory the server's config, error, and log files
  49. # are kept in
  50.  
  51. ServerRoot /tmp/httpd
  52.  
  53. # ErrorLog: The location of the error log file. If this does not start
  54. # with /, ServerRoot is prepended to it.
  55.  
  56. ErrorLog logs/error_log
  57.  
  58. # TransferLog: The location of the transfer log file. If this does not
  59. # start with /, ServerRoot is prepended to it.
  60.  
  61. TransferLog logs/access_log
  62.  
  63. # AgentLog: The location of the agent log file.  If this does not start
  64. # with /, ServerRoot is prepended to it.
  65.  
  66. AgentLog logs/agent_log
  67.  
  68. # RefererLog: The location of the referer log file.  If this does not
  69. # start with /, ServerRoot is prepended to it.
  70.  
  71. RefererLog logs/referer_log
  72.  
  73. # RefererIgnore: If you don't want to keep track of links from certain
  74. # servers (like your own), place it here.  If you want to log them all,
  75. # keep this line commented.
  76.  
  77. #RefererIgnore servername
  78.  
  79. # PidFile: The file the server should log its pid to
  80. PidFile logs/httpd.pid
  81.  
  82. # ServerName allows you to set a host name which is sent back to clients for
  83. # your server if it's different than the one the program would get (i.e. use
  84. # "www" instead of the host's real name).
  85. #
  86. # Note: You cannot just invent host names and hope they work. The name you 
  87. # define here must be a valid DNS name for your host. If you don't understand
  88. # this, ask your network administrator.
  89.  
  90. #ServerName new.host.name
  91. #(this is done in startup script
  92.